home *** CD-ROM | disk | FTP | other *** search
- # find: a WAIS search gateway
- #
- # salil@eitech.com
-
- proc find {switches envelope inputs } {
- set source [lindex $switches 0];
- set keywords [lrange $switches 1 end];
- setfield response DESCRIPTION "Results of your search.";
- setfield response STRING [exec /export/dist/wais/wais-8-b4/bin/waisq -f - -S $source -g $keywords];
- return [mailout [turnaround $envelope] $response];
- }
-
-